projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4ae0b8
)
(mouse-sel-determine-selection-thing): Fix character constant.
author
Juanma Barranquero
<lekktu@gmail.com>
Tue, 18 Feb 2003 10:57:39 +0000
(10:57 +0000)
committer
Juanma Barranquero
<lekktu@gmail.com>
Tue, 18 Feb 2003 10:57:39 +0000
(10:57 +0000)
lisp/mouse-sel.el
patch
|
blob
|
history
diff --git
a/lisp/mouse-sel.el
b/lisp/mouse-sel.el
index f806395489dd82b1f5d0639538cb6bd9430f32d2..bba41a0dbf9aca6d7d72057b348581d1cdc0c611 100644
(file)
--- a/
lisp/mouse-sel.el
+++ b/
lisp/mouse-sel.el
@@
-345,7
+345,7
@@
multi-click semantics."
((= nclicks 3) 'line)
((>= nclicks 4) 'paragraph)
((memq char-syntax '(?\( ?\) ?\" ?')) 'sexp)
- ((memq next-char '(? ?\t ?\n)) 'whitespace)
+ ((memq next-char '(?
\s
?\t ?\n)) 'whitespace)
((eq char-syntax ?_) 'symbol)
((eq char-syntax ?w) 'word))))